func golang.org/x/tools/internal/versions.cutInt

5 uses

	golang.org/x/tools/internal/versions (current package)
		gover.go#L74: 	v.major, x, ok = cutInt(x)
		gover.go#L91: 	v.minor, x, ok = cutInt(x[1:])
		gover.go#L106: 		v.patch, x, ok = cutInt(x[1:])
		gover.go#L134: 	v.pre, x, ok = cutInt(x)
		gover.go#L144: func cutInt(x string) (n, rest string, ok bool) {